home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / esc.jar / com / extensibility / plugin / api / ResLocationContext.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-06-30  |  988 b   |  26 lines

  1. package com.extensibility.plugin.api;
  2.  
  3. import java.io.File;
  4.  
  5. public interface ResLocationContext extends PluginContext {
  6.    void okSave(URIScheme var1);
  7.  
  8.    void okOpen(URIScheme var1);
  9.  
  10.    void cancel();
  11.  
  12.    void setOKEnabled(boolean var1);
  13.  
  14.    File askFile(String var1, String[] var2);
  15.  
  16.    URIScheme getBaseLocation();
  17.  
  18.    URIScheme createResLocation(URIScheme var1, String var2);
  19.  
  20.    URIScheme createResLocation(File var1);
  21.  
  22.    LoginPanel getLoginPanel(String[] var1, String var2, String var3, String var4);
  23.  
  24.    TreeBrowseContext createBrowsing(TreeBrowseModel var1, TreeBrowseListener var2);
  25. }
  26.